home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap07 / howto06 / delphi10 / soundex / soundtst.dpr < prev    next >
Encoding:
Text File  |  1995-09-17  |  235 b   |  14 lines

  1. program Soundtst;
  2.  
  3. uses
  4.   Forms,
  5.   Soundfrm in 'SOUNDFRM.PAS' {EmployeeSearchForm},
  6.   Soundex in 'SOUNDEX.PAS';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TEmployeeSearchForm, EmployeeSearchForm);
  12.   Application.Run;
  13. end.
  14.